home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib9 / v_11_09 / 1109080a < prev    next >
Encoding:
Text File  |  1995-11-01  |  308 b   |  16 lines

  1. # a makefile for the Fixed point class
  2.  
  3. test.exe: test.obj fixed.obj
  4.         c:\borlandc\bin\tlink /v c0s+test+fixed,test,nul,cs+emu+maths
  5.  
  6. .cpp.obj:
  7.    c:\borlandc\bin\bcc -ms -c -v $<
  8.  
  9. .asm.obj:
  10.    c:\borlandc\bin\tasm -ms -zi $*
  11.  
  12. test.obj : test.cpp fixed.h
  13.  
  14. fixed.obj : fixed.cpp fixed.h
  15.  
  16.